home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 8 / Night Owl CD-ROM (NOPV8) (Night Owl Publisher) (1993).ISO / 034a / aecur101.arj / CONTRIB / CURSES / TEST / MAKEFILE next >
Text File  |  1992-05-31  |  135b  |  8 lines

  1. CFLAGS = -O -I../inc
  2.  
  3. test : test.o ../lib/libcurses.a
  4.     gcc $(CFLAGS) $^ -lpc -o test
  5.  
  6. test.o : test.c
  7.     gcc $(CFLAGS) -c test.c
  8.